home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / Source / GNU / perl / Perl / t / op / stat.t < prev    next >
Encoding:
Text File  |  1994-10-18  |  5.5 KB  |  180 lines

  1. #!./perl
  2.  
  3. # $RCSfile: stat.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:28 $
  4.  
  5. print "1..56\n";
  6.  
  7. chop($cwd = `pwd`);
  8.  
  9. $DEV = `ls -l /dev`;
  10.  
  11. unlink "Op.stat.tmp";
  12. open(FOO, ">Op.stat.tmp");
  13.  
  14. $junk = `ls Op.stat.tmp`;    # hack to make Apollo update link count
  15.  
  16. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  17.     $blksize,$blocks) = stat(FOO);
  18. if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
  19. if ($mtime && $mtime == $ctime) {print "ok 2\n";} else {print "not ok 2\n";}
  20.  
  21. print FOO "Now is the time for all good men to come to.\n";
  22. close(FOO);
  23.  
  24. sleep 2;
  25.  
  26. `rm -f Op.stat.tmp2; ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp`;
  27.  
  28. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  29.     $blksize,$blocks) = stat('Op.stat.tmp');
  30.  
  31. if ($nlink == 2) {print "ok 3\n";} else {print "not ok 3\n";}
  32. if (($mtime && $mtime != $ctime) || $cwd =~ m#/afs/#) {
  33.     print "ok 4\n";
  34. }
  35. else {
  36.     print "not ok 4\n";
  37. }
  38. print "#4    :$mtime: != :$ctime:\n";
  39.  
  40. `rm -f Op.stat.tmp`;
  41. `touch Op.stat.tmp`;
  42.  
  43. if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
  44. if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
  45.  
  46. `echo hi >Op.stat.tmp`;
  47. if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
  48. if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
  49.  
  50. unlink 'Op.stat.tmp';
  51. $olduid = $>;        # can't test -r if uid == 0
  52. `echo hi >Op.stat.tmp`;
  53. chmod 0,'Op.stat.tmp';
  54. eval '$> = 1;';        # so switch uid (may not be implemented)
  55. if (!$> || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
  56. if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
  57. eval '$> = $olduid;';        # switch uid back (may not be implemented)
  58. print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
  59. if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
  60.  
  61. foreach ((12,13,14,15,16,17)) {
  62.     print "ok $_\n";        #deleted tests
  63. }
  64.  
  65. chmod 0700,'Op.stat.tmp';
  66. if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
  67. if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
  68. if (-x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
  69.  
  70. if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
  71. if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
  72.  
  73. if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
  74. if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
  75.  
  76. if (`ls -l perl` =~ /^l.*->/) {
  77.     if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
  78. }
  79. else {
  80.     print "ok 25\n";
  81. }
  82.  
  83. if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
  84.  
  85. if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
  86. `rm -f Op.stat.tmp Op.stat.tmp2`;
  87. if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
  88.  
  89. if ($DEV !~ /\nc.* (\S+)\n/)
  90.     {print "ok 29\n";}
  91. elsif (-c "/dev/$1")
  92.     {print "ok 29\n";}
  93. else
  94.     {print "not ok 29\n";}
  95. if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
  96.  
  97. if ($DEV !~ /\ns.* (\S+)\n/)
  98.     {print "ok 31\n";}
  99. elsif (-S "/dev/$1")
  100.     {print "ok 31\n";}
  101. else
  102.     {print "not ok 31\n";}
  103. if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
  104.  
  105. if ($DEV !~ /\nb.* (\S+)\n/)
  106.     {print "ok 33\n";}
  107. elsif (-b "/dev/$1")
  108.     {print "ok 33\n";}
  109. else
  110.     {print "not ok 33\n";}
  111. if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
  112.  
  113. $cnt = $uid = 0;
  114.  
  115. die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
  116. chdir '/usr/bin' || die "Can't cd to /usr/bin";
  117. while (defined($_ = <*>)) {
  118.     $cnt++;
  119.     $uid++ if -u;
  120.     last if $uid && $uid < $cnt;
  121. }
  122. chdir $cwd || die "Can't cd back to $cwd";
  123.  
  124. # I suppose this is going to fail somewhere...
  125. if ($uid > 0 && $uid < $cnt)
  126.     {print "ok 35\n";}
  127. else
  128.     {print "not ok 35 ($uid $cnt)\n";}
  129.  
  130. unless (open(tty,"/dev/tty")) {
  131.     print STDERR "Can't open /dev/tty--run t/TEST outside of make.\n";
  132. }
  133. if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
  134. if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
  135. close(tty);
  136. if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
  137. open(null,"/dev/null");
  138. if (! -t null || -e '/xenix') {print "ok 39\n";} else {print "not ok 39\n";}
  139. close(null);
  140. if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
  141.  
  142. # These aren't strictly "stat" calls, but so what?
  143.  
  144. if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
  145. if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
  146.  
  147. if (-B './perl') {print "ok 43\n";} else {print "not ok 43\n";}
  148. if (! -T './perl') {print "ok 44\n";} else {print "not ok 44\n";}
  149.  
  150. open(FOO,'op/stat.t');
  151. eval { -T FOO; };
  152. if ($@ =~ /not implemented/) {
  153.     print "# $@";
  154.     for (45 .. 54) {
  155.     print "ok $_\n";
  156.     }
  157. }
  158. else {
  159.     if (-T FOO) {print "ok 45\n";} else {print "not ok 45\n";}
  160.     if (! -B FOO) {print "ok 46\n";} else {print "not ok 46\n";}
  161.     $_ = <FOO>;
  162.     if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
  163.     if (-T FOO) {print "ok 48\n";} else {print "not ok 48\n";}
  164.     if (! -B FOO) {print "ok 49\n";} else {print "not ok 49\n";}
  165.     close(FOO);
  166.  
  167.     open(FOO,'op/stat.t');
  168.     $_ = <FOO>;
  169.     if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
  170.     if (-T FOO) {print "ok 51\n";} else {print "not ok 51\n";}
  171.     if (! -B FOO) {print "ok 52\n";} else {print "not ok 52\n";}
  172.     seek(FOO,0,0);
  173.     if (-T FOO) {print "ok 53\n";} else {print "not ok 53\n";}
  174.     if (! -B FOO) {print "ok 54\n";} else {print "not ok 54\n";}
  175. }
  176. close(FOO);
  177.  
  178. if (-T '/dev/null') {print "ok 55\n";} else {print "not ok 55\n";}
  179. if (-B '/dev/null') {print "ok 56\n";} else {print "not ok 56\n";}
  180.